home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gsargs.h < prev    next >
C/C++ Source or Header  |  1997-06-05  |  2KB  |  71 lines

  1. /* Copyright (C) 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gsargs.h */
  20. /* Command line argument list management */
  21.  
  22. #ifndef gsargs_INCLUDED
  23. #  define gsargs_INCLUDED
  24.  
  25. /*
  26.  * We need to handle recursion into @-files.
  27.  * The following structures keep track of the state.
  28.  * Defining a maximum argument length and a maximum nesting depth
  29.  * decreases generality, but eliminates the need for dynamic allocation.
  30.  */
  31. #define arg_str_max 512
  32. #define arg_depth_max 10
  33. typedef struct arg_source_s {
  34.     bool is_file;
  35.     union _u {
  36.       const char *str;
  37.       FILE *file;
  38.     } u;
  39. } arg_source;
  40. typedef struct arg_list_s {
  41.     bool expand_ats;    /* if true, expand @-files */
  42.     FILE *(*arg_fopen)(P2(const char *fname, void *fopen_data));
  43.     void *fopen_data;
  44.     const char **argp;
  45.     int argn;
  46.     int depth;        /* depth of @-files */
  47.     char cstr[arg_str_max + 1];
  48.     arg_source sources[arg_depth_max];
  49. } arg_list;
  50.  
  51. /* Initialize an arg list. */
  52. void arg_init(P5(arg_list *pal, const char **argv, int argc,
  53.          FILE *(*arg_fopen)(P2(const char *fname, void *fopen_data)),
  54.          void *fopen_data));
  55.  
  56. /* Push a string onto an arg list. */
  57. /* This may also be used (once) to "unread" the last argument. */
  58. void arg_push_string(P2(arg_list *pal, const char *str));
  59.  
  60. /* Clean up an arg list before exiting. */
  61. void arg_finit(P1(arg_list *pal));
  62.  
  63. /* Get the next arg from a list. */
  64. /* Note that these are not copied to the heap. */
  65. const char *arg_next(P1(arg_list *pal));
  66.  
  67. /* Copy an argument string to the heap. */
  68. char *arg_copy(P2(const char *str, gs_memory_t *mem));
  69.  
  70. #endif                    /* gsargs_INCLUDED */
  71.